home *** CD-ROM | disk | FTP | other *** search
- #ifndef __Shell_PlainRect_h
- #define __Shell_PlainRect_h
-
- #ifndef __Shell_Shell_h
- #include "Shell.Shell.h"
- #endif
-
-
- Shell_rectblock *Shell_AddPlainRect(
- Shell_windblock *w,
- int xmin, int ymin,
- int xmax, int ymax
- );
-
- /* A plain rect is just rectangle inside a Shell window */
- /* which can be saved as a sprite. */
-
-
- Shell_rectblock *Shell_AddPlainGreyRect(
- Shell_windblock *w,
- int xmin, int ymin,
- int xmax, int ymax
- );
-
- /* As above, except that the saved sprite will be have */
- /* 256-colours and a grey-scale palette instead of a */
- /* sprite from the current mode */
-
- #endif
-